Labels: text | screenshot | font OCR: // Class for fixed point arithmetic // This scheme uses a 32-bit long for 16:16 // fixed point representation #include <math.h> class FIXED { private: enum FIXEDconsts { Fraction, Whole } union { long complete; short parts[2];